home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Champak 49
/
Volume 49 - JOGO DISK .iso
/
Games
/
grabthegrub.swf
/
scripts
/
__Packages
/
StreetSpace.as
< prev
Wrap
Text File
|
2007-10-01
|
652b
|
29 lines
class StreetSpace extends MovieClip
{
function StreetSpace(c, x, y, n, t, r, b, l)
{
super();
this.mcName = c;
this.xPos = x;
this.yPos = y;
this.tileNum = n;
this.fromLeft = l;
this.fromRight = r;
this.fromTop = t;
this.fromBottom = b;
this.mcName.lLine._visible = !l;
this.mcName.rLine._visible = !r;
this.mcName.tLine._visible = !t;
this.mcName.bLine._visible = !b;
}
function getMyInfo()
{
var _loc2_ = {};
for(var _loc3_ in this)
{
_loc2_[_loc3_] = this[_loc3_];
}
return _loc2_;
}
}